home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / i / imagefxv2.1a.lha / ImageFX / Rexx / CineMorph / SelectAll.cmorph < prev    next >
Text File  |  1996-03-02  |  287b  |  22 lines

  1. /*
  2.  * Arexx program for CineMorph 2.0
  3.  *
  4.  * Select all points in the grid.
  5.  * Written by Thomas Krehbiel
  6.  *
  7.  */
  8.  
  9. OPTIONS RESULTS
  10.  
  11. GetStatus GridSize
  12. PARSE VAR result gridw gridh
  13.  
  14. ActivePoint 0 0
  15. DO j = 0 TO gridh-1
  16.    DO i = 0 TO gridw-1
  17.       ActivePoint i j ADD
  18.       END
  19.    END
  20.  
  21. EXIT
  22.